home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / editor / frexxed / fpl / devpac.fpl.readme < prev    next >
Text File  |  1995-07-18  |  2KB  |  72 lines

  1. ############################################
  2. File: Devpac.FPL
  3. Author: Peter Carlsson
  4. Email: ei94134@ios.chalmers.se
  5. Short description: Interface to GenAm/MonAm
  6. Version: 1.0
  7. Date: 20.4.95
  8. Local settings:
  9. Global settings:
  10.     "_Assembler"
  11.     "_Parser"
  12.     "_Debugger"
  13.     "_Make"
  14.     "_Asm_opt"
  15.     "_Make_opt"
  16. Keysequence: 'Control' + {a, m, d, x, n, p}
  17. Type: function, menu, key
  18. Prereq: ExtraIO
  19. ############################################
  20.  
  21. FUNCTION
  22.  
  23.     This program will add some functions under a menu called "Assembler".
  24.  
  25.     Assemble       - Assemble the current buffer. Filename should end with
  26.                      '.s'. An executable file will be created.
  27.  
  28.     Make           - Make an executable file of the current text buffer.
  29.                      This will do the same as 'Assemble' except that you
  30.                      can have different assembler options (i.e don't make
  31.                      any symbol tabel).
  32.  
  33.     Debug          - Start MonAm for debugging current text buffer.
  34.  
  35.     Execute        - Run the executable file.
  36.  
  37.     Next Error     - Jump to the next error (if any).
  38.  
  39.     Previous Error - Jump to the previous error (if any).
  40.  
  41.     Settings...    - These settings will be saved along with the normal
  42.                      settings.
  43.  
  44.     How does it work? The output from GenAm is redirected to a file called
  45.     T:GenAmOutput. This file will then be parsed by FrexxGen.
  46.     The errors/warnings (if any) will then be sent to a file called
  47.     T:FrexxGenOutput and also sent to a window which pops up on the FrexxEd
  48.     screen.
  49.  
  50.     The user is then able to step between the errors/warnings and see what
  51.     is wrong.
  52.  
  53.     Requires the following files:
  54.         MonAm    - Copyright HiSoft
  55.         GenAm    - Copyright HiSoft
  56.         FrexxGen - Included in the FrexxEd package
  57.  
  58.     Last but not least, I would like to send my regards to Bjørn Reese
  59.     <breese@imada.ou.dk> who wrote Assemble.FPL. Those who are observant
  60.     will notice some similarities :)
  61.  
  62.  
  63. BUGS
  64.   o No known
  65.  
  66.  
  67. SEE ALSO
  68.     FrexxGen.doc
  69.  
  70. HISTORY
  71.   1.0  20.4.95  First release
  72.